3. Properties

3.10 the Metalist of member

Syntax:
set mylist = the Metalist of member whichcastmember

Purpose:
This property is used to get a list of meta information of the #html cast member.
We have designed that functionality basically for storing and retrieving information about the document itself.

While authoring the html source files, you can include additional informations in the <HEAD> ... </HEAD> part of the html, which is not visible in any browser or the #html cast member. A single meta tag has the following syntax:
<META name="tag1item1" content="tag1item2">
You can use as many consecutive meta tags as you like.

The returned list is a list of lists. mylist (above example) is a list of all parsed meta tags. Each item of this list is a list with two elements, the first one if the value of the name parameter, the second one is the value of the content parameter. These values are strings. As example put the meta of member "html" would give a result like:
[ ["tag1item1","tag1item2"], ["tag2item1","tag2item2"] ]

This property can be tested, but not set.

Notes:

See also: